home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
src
/
chmod.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-04
|
156b
|
11 lines
#include "amiga.h"
int chmod(const char *name, int mode)
{
__chkabort();
if (SetProtection(name, _make_protection(mode)))
return 0;
ERROR;
}